home *** CD-ROM | disk | FTP | other *** search
/ Geni@l B1 3 / Geni@l B1 3.iso / Mac_OSX / Install Flash Player 10 UB.dmg / Adobe Flash Player.pkg / Contents / Resources / preflight < prev    next >
Text File  |  2009-02-05  |  885b  |  31 lines

  1. #!/bin/sh
  2.  
  3. #
  4. # Preflight installer script
  5. # Copyright 2008 Adobe Systems Incorporated. All Rights Reserved.
  6. #
  7.  
  8. # ----------------------------------------------------------------------
  9. # [1] Perform version check and don't install on v10.2 & v10.3 systems.
  10. # ----------------------------------------------------------------------
  11. "$1/Contents/Resources/MacOSXVersionCheck.sh"
  12.  
  13. # Fail script if operation didn't execute successfully
  14. EXIT_STATUS=$?
  15. if [ $EXIT_STATUS -ne 0 ]
  16. then
  17.     exit $EXIT_STATUS
  18. fi
  19.  
  20. # ----------------------------------------------------------------------
  21. # [2] If user's system >= v10.4, continue
  22. # ----------------------------------------------------------------------
  23. "$1/Contents/Resources/CloseFPClients.app/Contents/MacOS/CloseFPClients"
  24.  
  25. # Fail script if operation didn't execute successfully
  26. EXIT_STATUS=$?
  27. if [ $EXIT_STATUS -ne 0 ]
  28. then
  29.     exit $EXIT_STATUS
  30. fi
  31.